home *** CD-ROM | disk | FTP | other *** search
/ Paradise in the Skirt / Paradise in the Skirt.iso / town1.dir / 00072_Script_72 < prev    next >
Text File  |  1994-11-11  |  1KB  |  29 lines

  1. ON STARTMOVIE
  2.   global manH,manV,raderH,raderV,Girl1,Girl2,gBlockList,gGirlList,gEntranceList,stepNo,totalHPoint,switchYesNo,gMovieList
  3.   put 5 into stepNo
  4.   put totalHpoint into field "Hpoint"
  5.   set gBlockList = [20,21,22,23,24,25,29,30,31,32,33]
  6.   set gEntranceList = [34,35,36]
  7.   set gGirlList = [20,21,22,23,24,25]
  8.   set gMovieList = [20:1,21:2,22:3,23:4,24:5,25:6]
  9.   set girlsblockList = [13,20,21,22,23,24,25,29,30,31,32,33]
  10.   puppetSprite 13, true
  11.   PUPPETSPRITE 14, TRUE
  12.   set the locH of sprite 13 to manH
  13.   set the locV of sprite 13 to manV
  14.   set the locH of sprite 14 to raderH
  15.   set the locV of sprite 14 to raderV
  16.   set girl1 = birth(script "aGirl", 24, 75, 27, 79, girlsblockList)
  17.   set girl2 = birth(script "aGirl", 25, 58, 28, 74, girlsblockList)
  18.   updatestage
  19.   set the keyDownScript = "incHPoint"
  20. END
  21.  
  22. on incHPoint
  23.   global totalHpoint
  24.   if the commandDown and the optionDown and (the keyCode = 4) then
  25.     put totalHpoint + 300 into totalHpoint
  26.     put totalHpoint into field "Hpoint"
  27.   end if
  28. end
  29.